2008-01-22 Sven Neumann <sven@gimp.org>
* extensions/gimp-8bit.c (u8_gamma_2_2_to_float_linear): use the
correct lookup table.
svn path=/trunk/; revision=276
+2008-01-22 Sven Neumann <sven@gimp.org>
+
+ * extensions/gimp-8bit.c (u8_gamma_2_2_to_float_linear): use the
+ correct lookup table.
+
2008-01-20 Øyvind Kolås <pippin@gimp.org>
Always use BablFishPath's for accepted conversions. The path
long n = samples;
while (n--)
- *d++ = lut_linear[*src++];
+ *d++ = lut_gamma_2_2[*src++];
return samples;
}